home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
CDICTION
/
CPASCALS.H
< prev
next >
Wrap
Text File
|
1990-01-12
|
342b
|
18 lines
/*
useless class created soley for testing CDictionary
*/
#define _H_CPascalString
/* simple object for testing dictionary. Just holds a pascal string */
#include "CObject.h"
#include "defs.h"
struct CPascalString : CObject
{
Str255 itsString;
virtual void SetString( StringPtr string);
virtual void GetString( StringPtr string);
};